github.com/klauspost/compress/zstd.bitReader.bitsRead (field)
15 uses
github.com/klauspost/compress/zstd (current package)
bitreader.go#L23: bitsRead uint8
bitreader.go#L38: b.bitsRead = 64
bitreader.go#L46: b.bitsRead += 8 - uint8(highBits(uint32(v)))
bitreader.go#L62: v := uint32((b.value << (b.bitsRead & regMask)) >> ((regMask + 1 - n) & regMask))
bitreader.go#L63: b.bitsRead += n
bitreader.go#L70: if b.bitsRead < 32 {
bitreader.go#L75: b.bitsRead -= 32
bitreader.go#L82: b.bitsRead = 0
bitreader.go#L87: if b.bitsRead < 32 {
bitreader.go#L93: b.bitsRead -= 32
bitreader.go#L97: b.bitsRead -= uint8(8 * b.cursor)
bitreader.go#L106: return b.cursor == 0 && b.bitsRead >= 64
bitreader.go#L111: return b.bitsRead > 64
bitreader.go#L116: return 8*uint(b.cursor) + 64 - uint(b.bitsRead)
bitreader.go#L127: if b.bitsRead > 64 {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |